
.directory-title-div {
    height: 25vh;
}

#directory-title {
    padding-left: 3vw;
    padding-right: 3vw;
    margin-bottom: 3vh;
}

#directory-search-bar {
    opacity: 1;
    margin: 3vh 0;
    font-size: 1rem;
    text-decoration: none;
    font-family: Manrope, Roboto, Arial;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 10vh;
    border-bottom: solid white 2px;
    outline: none;
    caret-color: black;
    width: 60vw;
    padding: 7px 30px; 
    box-shadow: 
    rgba(8, 4, 29, 0.274) 0px 2px 9px
}

#directory-search-bar::placeholder {
            color: rgba(0, 0, 0, 0.425);
        }
/*ENZO MADE stuff */
.org-cards{
    display: grid;
    gap: .25rem;
    grid-template-columns: repeat(auto_fill, minmax(150px, 1fr));
    margin-top: 1rem;
}
.card{
    border: 1px solid black;
    background-color: white;
    padding: .5rem;
}

/* nth-child cards modified below by aeon to move up on scroll. */

.card:nth-child(odd) { position: relative; /* Needed for the 'left' property to work relative to its normal position */
    animation-name: slideFromLeft;
    animation-duration: 1s;
    animation-fill-mode: forwards; /* Stays at the end point of the animation */
}
.card:nth-child(even) {
    position: relative; /* Needed for the 'left' property to work relative to its normal position */
    animation-name: slideFromRight;
    animation-duration: 1s;
    animation-fill-mode: forwards; /* Stays at the end point of the animation */
}
/* Optional: Fun hover effect for all cards */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.hide {
  display: none !important;
}
@keyframes slideFromRight {
    0% {
        bottom: -20%; /* Start off-screen */
    }
    100% {
        bottom: 0; /* End at the final position */
    }
}
@keyframes slideFromLeft {
    0% {
        bottom: -20%; /* Start off-screen */
    }
    100% {
        bottom: 0; /* End at the final position */
    }
}

/*end of aeon modifications*/